Removing Text


Tip
As it was mention before, wstring allows writing code that it is easier to read than wchar_t. However, wchar_t gives more control to create more efficient code than wstring. The following two codes remove all characters from the text variable. However, the example that uses wchar_t is much more faster and efficient that the code that uses wstring.
Como se mencionó previamente, wstring permite escribir código que es más fácil de leer que wchar_t. Sin embargo, wchar_t proporciona más control para crear código más eficiente que wstring. Los siguientes dos códigos remueven todos los caracteres de la variable de texto. Sin embargo, el ejemplo que usa wchar_t es mucho más rápido y eficiente que el código que usa wstring.

Program.cpp
void Program::Window_Open(Win::Event& e)
{
     //_________________________ Using wchar_t
     wchar_t name[64];
     wcscpy_s(name, 64, L"Hello");
     name[0] = '\0'; // Insert a string terminator at the beginning deletes the text
}


Program.cpp
void Program::Window_Open(Win::Event& e)
{
     //_________________________ Using wstring
     wstring name(L"Hello");
     name.clear();
}

© Copyright 2000-2021 Wintempla selo. All Rights Reserved. Jul 22 2021. Home